Accepting command line arguments
It is possible to accept command line arguments.
w int main(int argc, char* argv[])
wargc  is number of command line arguments (the ARGument Count)
wargv[] is a listing of the command line arguments. argv[0] is entire path to the program including its name. After that, every element number less than argc are command line arguments.